29daaada3a311f97b8becb979c53f12403239a43,providence-reflect/src/main/java/net/morimekta/providence/reflect/contained/CProgram.java,CProgram,CProgram,#String#String#Map#Collection#Collection#Map#Collection#Collection#Collection#,58
Before Change
this.includedFiles = ImmutableList.copyOf(includedFies);
this.typedefs = ImmutableMap.copyOf(typedefs);
this.declaredTypes = ImmutableList.copyOf(declaredTypes);
this.services = ImmutableList.copyOf(services);
this.constants = ImmutableList.copyOf(constants);
}
public String getComment() {
After Change
this.includedFiles = includedFiles == null ? ImmutableList.of() : ImmutableList.copyOf(includedFiles);
this.typedefs = typedefs == null ? ImmutableMap.of() : ImmutableMap.copyOf(typedefs);
this.declaredTypes = declaredTypes == null ? ImmutableList.of() : ImmutableList.copyOf(declaredTypes);
this.services = services == null ? ImmutableList.of() : ImmutableList.copyOf(services);
this.constants = constants == null ? ImmutableList.of() : ImmutableList.copyOf(constants);
}
public String getComment() {